[PWGDQ] Removing ROOT dictionaries#16838
Conversation
|
O2 linter results: ❌ 269 errors, |
| { | ||
| public: | ||
| AnalysisCompositeCut(bool useAND = kTRUE); | ||
| explicit AnalysisCompositeCut(bool useAND = kTRUE); |
There was a problem hiding this comment.
If you use this class as a data member in an analysis task, the explicit constructor will probably break the decomposition that is used to parse the task's content.
There was a problem hiding this comment.
Indeed ... I removed the explicit, thanks
|
Error while checking build/O2Physics/o2 for 590cbb9 at 2026-06-26 20:41: Full log here. |
|
Error while checking build/O2Physics/staging for 590cbb9 at 2026-06-26 20:43: Full log here. |
| //____________________________________________________________________________ | ||
| void AnalysisCut::PrintCuts() | ||
| { | ||
| cout << "**************** AnalysisCut::PrintCuts" << endl; |
There was a problem hiding this comment.
Not really related to this PR, but since these classes are probably not used outside of O2Physics, it makes sense to use framework log facilities instead of iostream.
There was a problem hiding this comment.
As reported by the O2 linter...
@iarsene @aalkin @ktf as suggested in PR#16823